1) A buggy BIOS may not report IOAPIC in DRHD. Currently we still try
to enable IR while the IOAPIC RTEs are still in non-remappable format
and the host would hang. The patch detects this case and will not try
to enable IR.
2) Currently HPET's MSI mode doesn't work if IR is enabled because we
have no code to allocate IRTE for it. Luckily this HW configuration is
rather rarely at present, we can just work it around by only using
HPET's IOAPIC mode for now.
Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
unsigned int num_chs, num_chs_used;
int i;
+ /* TODO. */
+ if ( iommu_intremap )
+ {
+ printk(XENLOG_INFO "HPET's MSI mode hasn't been supported when "
+ "Interrupt Remapping is enabled.\n");
+ return 0;
+ }
+
id = hpet_read32(HPET_ID);
num_chs = ((id & HPET_ID_NUMBER) >> HPET_ID_NUMBER_SHIFT);
}
}
+ if ( iommu_intremap )
+ {
+ int apic;
+ for ( apic = 0; apic < nr_ioapics; apic++ )
+ {
+ if ( ioapic_to_iommu(IO_APIC_ID(apic)) == NULL )
+ {
+ iommu_intremap = 0;
+ dprintk(XENLOG_ERR VTDPREFIX,
+ "ioapic_to_iommu: ioapic 0x%x (id: 0x%x) is NULL! "
+ "Will not try to enable Interrupt Remapping.\n",
+ apic, IO_APIC_ID(apic));
+ break;
+ }
+ }
+ }
+
if ( iommu_intremap )
{
for_each_drhd_unit ( drhd )